home *** CD-ROM | disk | FTP | other *** search
/ Info-Mac 4 / Info_Mac IV CD-ROM (Pacific HiTech Inc.)(August 1994).iso / Development / Source / Macintosh Tracker Source / Tracker Client Folder / Core 18⁄March⁄1994 / Error.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-08-10  |  258 b   |  12 lines  |  [TEXT/KAHL]

  1. /* Error.h */
  2.  
  3. #pragma once
  4.  
  5. #ifndef COMPILING_ERROR_C
  6.     extern MyBoolean GlobalErrorStatus;
  7. #endif
  8.  
  9. #define ResetErrorCheck(glop) GlobalErrorStatus = False
  10. #define SetErrorStatus(glop) GlobalErrorStatus = True
  11. #define ErrorOccurred(glop) (GlobalErrorStatus)
  12.